<!DESCRIPTION> This script expands on the regular ticker, by delivering its messages both in sequence (one at a time), and optionally, all at once. No more waiting to get to a message you saw earlier! Script works in IE4+, NS4, and NS6+.
<!/DESCRIPTION>
<!CATEGORY>scrollers<!/CATEGORY>
<!SCRIPT>
<!-- START OF SCRIPT -->
<!-- Step 1: Copy the below style sheet into the HEAD section of your page: -->
<style>
<!--
#listbutton{
border:1px solid #4B4B4B;
background-color:#F3F3F3;
width:50px;
height:12px;
font: normal 11px Arial;
text-align:center;
cursor:pointer;cursor:hand;
}
.expandhighlight, .expandhighlight a{
color:red;
}
-->
</style>
<!-- Step 2: Then, put the below script where you wish the ticker to appear in the BODY section of your page: -->
<script language="JavaScript1.2">
//Expandable ticker script- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use
//configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted)
var tickercontents=new Array()
tickercontents[0]='See what\'s New at Dynamic Drive. <a href="http://www.dynamicdrive.com/new.htm">[Read more]</a>'
tickercontents[1]='Browse the most popular scripts on Dynamic Drive <a href="http://www.dynamicdrive.com/hot.htm">[Read more]</a>'
tickercontents[2]='<a href="http://www.dynamicdrive.com/link.htm">Link back to Dynamic Drive!</a>'
//configure the below 2 variables to set the width/background color of the ticker
var tickerwidth='475px'
var tickerbgcolor='#DDDDFF'
//configure the below variable to determine the delay between ticking of messages (in miliseconds)